home *** CD-ROM | disk | FTP | other *** search
/ SVM Mac 1 / CD-ROM N°1.iso / Serveur SVM Mac / Scripts / SprintNet.fcl < prev   
Encoding:
Text File  |  1995-01-01  |  701 b   |  31 lines  |  [TEXT/????]

  1. // This sample script shows how to log onto a FirstClass
  2. // server over the SprintNet X.25 service.  It is assumed
  3. // that FirstClass has already dialed the SprintNet Number.
  4. //
  5. DELAY 120
  6. SEND "@"
  7. DELAY 20
  8. SEND "D"
  9. DELAY 20
  10. SEND "\r"
  11. //
  12. // now that it sees us we get it set up
  13. //
  14. WAITFOR "TERMINAL=" -t3600
  15. DELAY 20
  16. SEND "D1\r"
  17. WAITFOR "@" -t300 
  18. //
  19. // make sure to type in your correct SprintNet account name
  20. // and password in the spaces below
  21. //
  22. SEND "C your address here,xxx\r"
  23. WAITFOR "PASSWORD" -t300 
  24. SEND "your password here\r"
  25. WAITFOR "CONNECT" -t3600
  26. //
  27. // SprintNet has connected us to our system
  28. // when we fall off the end of a script like this,
  29. // the normal FirstClass login starts up
  30.  
  31.